vendor/golang.org/x/net/http2/hpack.headerFieldTable.evictCount (field)
10 uses
vendor/golang.org/x/net/http2/hpack (current package)
static_table.go#L7: evictCount: 0,
tables.go#L30: evictCount uint64
tables.go#L57: id := uint64(t.len()) + t.evictCount + 1
tables.go#L70: id := t.evictCount + uint64(k) + 1
tables.go#L83: if t.evictCount+uint64(n) < t.evictCount {
tables.go#L86: t.evictCount += uint64(n)
tables.go#L117: if id <= t.evictCount {
tables.go#L118: panic(fmt.Sprintf("id (%v) <= evictCount (%v)", id, t.evictCount))
tables.go#L120: k := id - t.evictCount - 1 // convert id to an index t.ents[k]
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |